Get Player Pending Games

Get Player Pending Games

1. Request URL

URL: {APIURL}/api/v1/player/pendinggames

2. Request Parameters

Parameter Name Type Description
UserID string[4-40] Operator’s unique player ID
  • Example:
    复制复制{
    "UserID": "user_id"
    }
    

3. Return Result

Parameter Name Type Description
Balance float Player’s current available balance
PendingGames string[] List of games that have not been settled after betting
  • Balance is only available in transfer mode.
  • PendingGames returns a list of games that the player has bet on but have not been fully settled.
  • Example:
    复制复制{
    "code": 0,
    "error": "",
    "data": {
      "Balance": 4259.94,
      "PendingGames": [
        "pg_1489936",
        "pg_20",
        "pg_37",
        "pg_58",
        "pg_59",
        "pg_94"
      ]
     }
    }
    

Get Player Pending Games

1. Request URL

URL: {APIURL}/api/v1/player/pendinggames

2. Request Parameters

Parameter Name Type Description
UserID string[4-40] Operator’s unique player ID
  • Example:
    复制{
    "UserID": "user_id"
    }
    

3. Return Result

Parameter Name Type Description
Balance float Player’s current available balance
PendingGames string[] List of games that have not been settled after betting
  • Balance is only available in transfer mode.
  • PendingGames returns a list of games that the player has bet on but have not been fully settled.
  • Example:
    复制{
    "code": 0,
    "error": "",
    "data": {
      "Balance": 4259.94,
      "PendingGames": [
        "pg_1489936",
        "pg_20",
        "pg_37",
        "pg_58",
        "pg_59",
        "pg_94"
      ]
     }
    }